table.IS_UNMARKED Function

Syntax

Result_Flag as L = Is_Unmarked()

Description

Is the current record Unmarked.

Discussion

The <TBL>.IS_UNMARKED() method returns .T. (TRUE) if the current record is not marked.

Example

This script checks if the current record is not marked.

dim tbl as P
tbl = table.current()
status = tbl.is_unmarked()

See Also